home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-09-17 | 1.5 KB | 50 lines | [TEXT/MPS ] |
- ###################################################################################################
- #
- # Copyright © 1990 Apple Computer, Inc. All rights reserved.
- # Copyright © 1990 Kevin O'Mahoney, All rights reserved.
- #
- # File: IsCheckedOut
- #
- #
- ###################################################################################################
- #
- # Abstract:
- #
- # This script was developed to help in the building of BART project as part of the Service Tools
- # diagnostic projects.
- #
- # This script accepts one input parameter. This is the name of a subproject in the BART project.
- # This script will open a temp file and show the status of all checked out files in that subproject.
- #
- ###################################################################################################
- #
- # Usage:
- # IsCheckedOut <mountedSubProjectName>
- #
- #
- ###################################################################################################
- #
- # Change History:
- #
- # 920131 - KOM - new today
- #
- ###################################################################################################
-
-
- Set komTempFileName temp-`Date -n`;
- New {komTempFileName};
- sizeWindow 350 600 {komTempFileName};
-
- Begin;
- Echo "#######################################################";
- Echo "#";
- Echo "# Looking for files checked out from"
- Echo "# project: “{1}”";
- Echo "#";
- Echo "#######################################################";
- Echo "# "`Date`;
- Echo;
- Projectinfo -project "{1}" -m -latest -r;
- Echo;
- Echo "# "`Date`;
- End >>{komTempFileName};